home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
LIBRARY
/
TOT
/
DEMO.EXE
/
arc
/
DEMMS5.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-10
|
593b
|
26 lines
program DemoMessageFive;
{demms5 - two strip-buttons with specific text}
Uses DOS, CRT,
totFAST, totMSG, totIO1;
Var
MsgWin : PromptOBJ;
ActionCode: tAction;
begin
Screen.Clear(white,'░'); {paint the screen}
with MsgWin do
begin
Init(1,' Warning ');
AddLine('');
AddLine(' The file already exists on disk, and ');
AddLine(' the contents will be over-written.');
AddLine('');
SetOption(1,' ~P~roceed ',80,Finished);
SetOption(2,' ~A~bort ',65,Escaped);
ActionCode := Show;
Done;
end;
end.